home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0957 / gnugrep / gui / search.cpp < prev   
C/C++ Source or Header  |  1996-07-22  |  12KB  |  445 lines

  1. /* search.c - searching subroutines using dfa, kwset and regex for grep.
  2.    Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.    Written August 1992 by Mike Haertel. */
  19.  
  20. #include "stdafx.h"
  21.  
  22. #include <ctype.h>
  23. #include <limits.h>
  24. #include <stdlib.h>
  25. #include <sys/types.h>
  26. #include <string.h>
  27. #include <memory.h>
  28.  
  29. #define bcopy(s, d, n) memcpy((d), (s), (n))
  30. #define ISALNUM(C) (isascii(C) && isalnum(C))
  31. #define ISUPPER(C) (isascii(C) && isupper(C))
  32.  
  33. #define TOLOWER(C) (ISUPPER(C) ? tolower(C) : (C))
  34.  
  35. #include "grep.h"
  36.  
  37. #include "dfa.h"
  38. #include "kwset.h"
  39. #include "regex.h"
  40.  
  41. extern "C"
  42.     {    BOOL CreatePrivateHeap();
  43.         BOOL DestroyPrivateHeap();
  44.         char *xmalloc(size_t size);
  45.         char *xrealloc(char *ptr, size_t size);
  46.         void xfree(char *ptr);
  47.         void fatal(char *szErr, int nErrNo);
  48.     }
  49.  
  50. #define malloc xmalloc
  51. #define realloc xrealloc
  52. #define free xfree
  53.  
  54. #define NCHAR (UCHAR_MAX + 1)
  55.  
  56. static void Gcompile(char *, size_t);
  57. static void Ecompile(char *, size_t);
  58. static char *EGexecute(char *, size_t, char **);
  59. static void Fcompile(char *, size_t);
  60. static char *Fexecute(char *, size_t, char **);
  61.  
  62. extern int match_words, match_lines, match_icase;
  63. extern char *matcher;
  64.  
  65. /* Here is the matchers vector for the main program. */
  66. struct matcher matchers[] = {
  67.   { "default", Gcompile, EGexecute },
  68.   { "grep", Gcompile, EGexecute },
  69.   { "ggrep", Gcompile, EGexecute },
  70.   { "egrep", Ecompile, EGexecute },
  71.   { "posix-egrep", Ecompile, EGexecute },
  72.   { "gegrep", Ecompile, EGexecute },
  73.   { "fgrep", Fcompile, Fexecute },
  74.   { "gfgrep", Fcompile, Fexecute },
  75.   { 0, 0, 0 },
  76. };
  77.  
  78. /* For -w, we also consider _ to be word constituent.  */
  79. #define WCHAR(C) (ISALNUM(C) || (C) == '_')
  80.  
  81. /* DFA compiled regexp. */
  82. static struct dfa dfa;
  83.  
  84. /* Regex compiled regexp. */
  85. static struct re_pattern_buffer regex;
  86.  
  87. /* KWset compiled pattern.  For Ecompile and Gcompile, we compile
  88.    a list of strings, at least one of which is known to occur in
  89.    any string matching the regexp. */
  90. kwset_t kwset =NULL;
  91.  
  92. /* Last compiled fixed string known to exactly match the regexp.
  93.    If kwsexec() returns < lastexact, then we don't need to
  94.    call the regexp matcher at all. */
  95. int lastexact =0;
  96.  
  97.  
  98. static void kwsinit()
  99. //-------------------
  100. {
  101.   static char trans[NCHAR];
  102.   int i;
  103.  
  104.   if (match_icase)
  105.     for (i = 0; i < NCHAR; ++i)
  106.       trans[i] = TOLOWER(i);
  107.  
  108.   if (!(kwset = kwsalloc(match_icase ? trans : (char *) 0)))
  109.     fatal("memory exhausted", 0);
  110. }  
  111.  
  112. /* If the DFA turns out to have some set of fixed strings one of
  113.    which must occur in the match, then we build a kwset matcher
  114.    to find those strings, and thus quickly filter out impossible
  115.    matches. */
  116. static void kwsmusts()
  117. //--------------------
  118. {
  119.   struct dfamust *dm;
  120.   char *err;
  121.  
  122.   if (dfa.musts)
  123.     {
  124.       kwsinit();
  125.       /* First, we compile in the substrings known to be exact
  126.      matches.  The kwset matcher will return the index
  127.      of the matching string that it chooses. */
  128.       for (dm = dfa.musts; dm; dm = dm->next)
  129.     {
  130.       if (!dm->exact)
  131.         continue;
  132.       ++lastexact;
  133.       if ((err = kwsincr(kwset, dm->must, strlen(dm->must))) != 0)
  134.         fatal(err, 0);
  135.     }
  136.       /* Now, we compile the substrings that will require
  137.      the use of the regexp matcher.  */
  138.       for (dm = dfa.musts; dm; dm = dm->next)
  139.     {
  140.       if (dm->exact)
  141.         continue;
  142.       if ((err = kwsincr(kwset, dm->must, strlen(dm->must))) != 0)
  143.         fatal(err, 0);
  144.     }
  145.       if ((err = kwsprep(kwset)) != 0)
  146.     fatal(err, 0);
  147.     }
  148. }
  149.  
  150. static void Gcompile(char *pattern, size_t size)
  151. //-----------------------------------------------
  152. {
  153.   const char *err;
  154.  
  155.   re_set_syntax(RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE);
  156.   dfasyntax(RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE, match_icase);
  157.  
  158.   if ((err = re_compile_pattern(pattern, size, ®ex)) != 0)
  159.     fatal((char *)err, 0);
  160.  
  161.   dfainit(&dfa);
  162.  
  163.   /* In the match_words and match_lines cases, we use a different pattern
  164.      for the DFA matcher that will quickly throw out cases that won't work.
  165.      Then if DFA succeeds we do some hairy stuff using the regex matcher
  166.      to decide whether the match should really count. */
  167.   if (match_words || match_lines)
  168.     {
  169.       /* In the whole-word case, we use the pattern:
  170.      (^|[^A-Za-z_])(userpattern)([^A-Za-z_]|$).
  171.      In the whole-line case, we use the pattern:
  172.      ^(userpattern)$.
  173.      BUG: Using [A-Za-z_] is locale-dependent!  */
  174.  
  175.       char *n = (char *) xmalloc(size + 50);
  176.       int i = 0;
  177.  
  178.       strcpy(n, "");
  179.  
  180.       if (match_lines)
  181.     strcpy(n, "^\\(");
  182.       if (match_words)
  183.     strcpy(n, "\\(^\\|[^0-9A-Za-z_]\\)\\(");
  184.  
  185.       i = strlen(n);
  186.       bcopy(pattern, n + i, size);
  187.       i += size;
  188.  
  189.       if (match_words)
  190.     strcpy(n + i, "\\)\\([^0-9A-Za-z_]\\|$\\)");
  191.       if (match_lines)
  192.     strcpy(n + i, "\\)$");
  193.  
  194.       i += strlen(n + i);
  195.       dfacomp(n, i, &dfa, 1);
  196.  
  197.             //xfree(n); // Added by D Munro 17/7/96
  198.     }
  199.   else
  200.     dfacomp(pattern, size, &dfa, 1);
  201.  
  202.   kwsmusts();
  203. }
  204.  
  205. static void Ecompile(char *pattern, size_t size)
  206. //----------------------------------------------
  207. { const char *err;
  208.  
  209.   if (strcmp(matcher, "posix-egrep") == 0)
  210.     {
  211.       re_set_syntax(RE_SYNTAX_POSIX_EGREP);
  212.       dfasyntax(RE_SYNTAX_POSIX_EGREP, match_icase);
  213.     }
  214.   else
  215.     {
  216.       re_set_syntax(RE_SYNTAX_EGREP);
  217.       dfasyntax(RE_SYNTAX_EGREP, match_icase);
  218.     }
  219.  
  220.   if ((err = re_compile_pattern(pattern, size, ®ex)) != 0)
  221.     fatal((char *)err, 0);
  222.  
  223.   dfainit(&dfa);
  224.  
  225.   /* In the match_words and match_lines cases, we use a different pattern
  226.      for the DFA matcher that will quickly throw out cases that won't work.
  227.      Then if DFA succeeds we do some hairy stuff using the regex matcher
  228.      to decide whether the match should really count. */
  229.   if (match_words || match_lines)
  230.     {
  231.       /* In the whole-word case, we use the pattern:
  232.      (^|[^A-Za-z_])(userpattern)([^A-Za-z_]|$).
  233.      In the whole-line case, we use the pattern:
  234.      ^(userpattern)$.
  235.      BUG: Using [A-Za-z_] is locale-dependent!  */
  236.  
  237.       char *n = (char *) xmalloc(size + 50);
  238.       int i = 0;
  239.  
  240.       strcpy(n, "");
  241.  
  242.       if (match_lines)
  243.     strcpy(n, "^(");
  244.       if (match_words)
  245.     strcpy(n, "(^|[^0-9A-Za-z_])(");
  246.  
  247.       i = strlen(n);
  248.       bcopy(pattern, n + i, size);
  249.       i += size;
  250.  
  251.       if (match_words)
  252.     strcpy(n + i, ")([^0-9A-Za-z_]|$)");
  253.       if (match_lines)
  254.     strcpy(n + i, ")$");
  255.  
  256.       i += strlen(n + i);
  257.       dfacomp(n, i, &dfa, 1);
  258.  
  259.             // xfree(n); // Added by D Munro 17/7/96
  260.     }
  261.   else
  262.     dfacomp(pattern, size, &dfa, 1);
  263.  
  264.   kwsmusts();
  265. }
  266.  
  267. static char *EGexecute(char *buf, size_t size, char **endp)
  268. //---------------------------------------------------------
  269. { register char *buflim, *beg, *end, save;
  270.   int backref, start, len;
  271.   struct kwsmatch kwsm;
  272.   static struct re_registers regs; /* This is static on account of a BRAIN-DEAD
  273.                     Q@#%!# library interface in regex.c.  */
  274.  
  275.     
  276.   buflim = buf + size;
  277.  
  278.   for (beg = end = buf; end < buflim; beg = end + 1)
  279.     {
  280.       if (kwset)
  281.     {
  282.       /* Find a possible match using the KWset matcher. */
  283.       beg = kwsexec(kwset, beg, buflim - beg, &kwsm);
  284.       if (!beg)
  285.         goto failure;
  286.       /* Narrow down to the line containing the candidate, and
  287.          run it through DFA. */
  288.       end = (char *) memchr(beg, '\n', buflim - beg);
  289.       if (!end)
  290.         end = buflim;
  291.       while (beg > buf && beg[-1] != '\n')
  292.         --beg;
  293.       save = *end;
  294.       if (kwsm.index < lastexact)
  295.         goto success;
  296.       if (!dfaexec(&dfa, beg, end, 0, (int *) 0, &backref))
  297.         {
  298.           *end = save;
  299.           continue;
  300.         }
  301.       *end = save;
  302.       /* Successful, no backreferences encountered. */
  303.       if (!backref)
  304.         goto success;
  305.     }
  306.       else
  307.     {
  308.       /* No good fixed strings; start with DFA. */
  309.       save = *buflim;
  310.       beg = dfaexec(&dfa, beg, buflim, 0, (int *) 0, &backref);
  311.       *buflim = save;
  312.       if (!beg)
  313.         goto failure;
  314.       /* Narrow down to the line we've found. */
  315.       end = (char *) memchr(beg, '\n', buflim - beg);
  316.       if (!end)
  317.         end = buflim;
  318.       while (beg > buf && beg[-1] != '\n')
  319.         --beg;
  320.       /* Successful, no backreferences encountered! */
  321.       if (!backref)
  322.         goto success;
  323.     }
  324.       /* If we've made it to this point, this means DFA has seen
  325.      a probable match, and we need to run it through Regex. */
  326.       regex.not_eol = 0;
  327.       if ((start = re_search(®ex, beg, end - beg, 0, end - beg, ®s)) >= 0)
  328.     {
  329.       len = regs.end[0] - start;
  330.       if (!match_lines && !match_words || match_lines && len == end - beg)
  331.         goto success;
  332.       /* If -w, check if the match aligns with word boundaries.
  333.          We do this iteratively because:
  334.          (a) the line may contain more than one occurence of the pattern, and
  335.          (b) Several alternatives in the pattern might be valid at a given
  336.          point, and we may need to consider a shorter one to find a word
  337.          boundary. */
  338.       if (match_words)
  339.         while (start >= 0)
  340.           {
  341.         if ((start == 0 || !WCHAR(beg[start - 1]))
  342.             && (len == end - beg || !WCHAR(beg[start + len])))
  343.           goto success;
  344.         if (len > 0)
  345.           {
  346.             /* Try a shorter length anchored at the same place. */
  347.             --len;
  348.             regex.not_eol = 1;
  349.             len = re_match(®ex, beg, start + len, start, ®s);
  350.           }
  351.         if (len <= 0)
  352.           {
  353.             /* Try looking further on. */
  354.             if (start == end - beg)
  355.               break;
  356.             ++start;
  357.             regex.not_eol = 0;
  358.             start = re_search(®ex, beg, end - beg,
  359.                       start, end - beg - start, ®s);
  360.             len = regs.end[0] - start;
  361.           }
  362.           }
  363.     }
  364.     }
  365.  
  366.  failure:
  367.   return 0;
  368.  
  369.  success:
  370.   *endp = end < buflim ? end + 1 : end;
  371.   return beg;
  372. }
  373.  
  374. static void Fcompile(char *pattern, size_t size)
  375. //----------------------------------------------
  376. { char *beg, *lim, *err;
  377.  
  378.   kwsinit();
  379.   beg = pattern;
  380.   do
  381.     {
  382.       for (lim = beg; lim < pattern + size && *lim != '\n'; ++lim)
  383.     ;
  384.       if ((err = kwsincr(kwset, beg, lim - beg)) != 0)
  385.     fatal(err, 0);
  386.       if (lim < pattern + size)
  387.     ++lim;
  388.       beg = lim;
  389.     }
  390.   while (beg < pattern + size);
  391.  
  392.   if ((err = kwsprep(kwset)) != 0)
  393.     fatal(err, 0);
  394. }
  395.  
  396. static char *Fexecute(char *buf, size_t size, char **endp)
  397. //--------------------------------------------------------
  398. { register char *beg, *pcTry, *end;
  399.   register size_t len;
  400.   struct kwsmatch kwsmatch;
  401.  
  402.   for (beg = buf; beg <= buf + size; ++beg)
  403.     {
  404.       if (!(beg = kwsexec(kwset, beg, buf + size - beg, &kwsmatch)))
  405.     return 0;
  406.       len = kwsmatch.size[0];
  407.       if (match_lines)
  408.     {
  409.       if (beg > buf && beg[-1] != '\n')
  410.         continue;
  411.       if (beg + len < buf + size && beg[len] != '\n')
  412.         continue;
  413.       goto success;
  414.     }
  415.       else if (match_words)
  416.     for (pcTry = beg; len && pcTry;)
  417.       {
  418.         if (pcTry > buf && WCHAR((unsigned char) pcTry[-1]))
  419.           break;
  420.         if (pcTry + len < buf + size && WCHAR((unsigned char) pcTry[len]))
  421.           {
  422.         pcTry = kwsexec(kwset, beg, --len, &kwsmatch);
  423.         len = kwsmatch.size[0];
  424.           }
  425.         else
  426.           goto success;
  427.       }
  428.       else
  429.     goto success;
  430.     }
  431.  
  432.   return 0;
  433.  
  434.  success:
  435.   if ((end = (char *) memchr(beg + len, '\n', (buf + size) - (beg + len))) != 0)
  436.     ++end;
  437.   else
  438.     end = buf + size;
  439.   *endp = end;
  440.   while (beg > buf && beg[-1] != '\n')
  441.     --beg;
  442.   return beg;
  443. }
  444.  
  445.